home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / TablePrinter / Makefile.preamble < prev    next >
Makefile  |  1995-06-12  |  4KB  |  101 lines

  1. ###############################################################################
  2. #  NeXT Makefile.preamble Template
  3. #  Copyright 1993, NeXT Computer, Inc.
  4. #
  5. #  This Makefile is used for configuring the standard app makefiles associated
  6. #  with ProjectBuilder.  
  7. #  
  8. #  Use this template to set attributes for a project, sub-project, bundle, or
  9. #  palette.  Each node in the project's tree of sub-projects and bundles 
  10. #  should have it's own Makefile.preamble and Makefile.postamble.
  11. #
  12. ###############################################################################
  13. ## Added by Eric T. Seymour
  14. ## Folders to place link library and header files
  15. LIBRARY_FOLDER = ./Lib
  16. HEADER_FOLDER = ./Headers
  17.  
  18. ## Library Name
  19. LIBRARY_NAME = libTablePrinter.a
  20.  
  21. ## Configure the flags passed to $(CC) here.  These flags will also be 
  22. ## inherited by all nested sub-projects and bundles.  Put your -I, -D, -U, and
  23. ## -L flags here.  To change the default flags that get passed to ${CC} 
  24. ## (e.g. change -O to -O2), see Makefile.postamble.
  25.  
  26. # Flags passed to compiler (in addition to -g, -O, etc)
  27. OTHER_CFLAGS = 
  28. # Flags passed to ld (in addition to -ObjC, etc.)
  29. OTHER_LDFLAGS =    
  30.  
  31. ## Configure what is linked in at each level here.  Libraries are only used in
  32. ## the final 'app' linking step.  Final 'app' linking is only done via the
  33. ## 'app', 'debug', and 'profile' targets when they are invoked for
  34. ## the top-level app.
  35.  
  36. # Additional relocatables to be linked in at this level
  37. OTHER_OFILES = 
  38. # Additional libs to link apps against ('app' target)
  39. OTHER_LIBS = 
  40. # Additional libs to link apps against ('debug' target)
  41. OTHER_DEBUG_LIBS = 
  42. # Additional libs to link apps against ('profile' target)
  43. OTHER_PROF_LIBS = 
  44.  
  45. # More 'app' libraries when $(JAPANESE) = "YES"
  46. OTHER_JAPANESE_LIBS = 
  47. # More 'debug' libraries when $(JAPANESE) = "YES"
  48. OTHER_JAPANESE_DEBUG_LIBS = 
  49. # More 'profile' libs when $(JAPANESE) = "YES"
  50. OTHER_JAPANESE_PROF_LIBS = 
  51.  
  52. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  53. ## derived files, and build order should be specified here.
  54.  
  55. # Other dependencies of this project
  56. OTHER_PRODUCT_DEPENDS =    $(LIBRARY_FOLDER) $(HEADER_FOLDER) \
  57.     $(LIBRARY_FOLDER)/$(LIBRARY_NAME)
  58.  
  59. # Built *before* building subprojects/bundles
  60. OTHER_EARLY_TARGETS = 
  61. # Other source files maintained by .pre/postamble
  62. OTHER_SOURCEFILES = 
  63. # Additional files to be removed by `make clean' 
  64. OTHER_GARBAGE = $(LIBRARY_FOLDER) $(HEADER_FOLDER)
  65. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  66. PRECOMPS = 
  67.  
  68. # Targets to be built before subprojects & bundles
  69. OTHER_INITIAL_TARGETS =    
  70.  
  71. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  72. # passed from ProjectBuilder.
  73. DSTROOT = 
  74.  
  75.  
  76. ## Add more obscure source files here to cause them to be automatically 
  77. ## processed by the appropriate tool.  Note that these files should also be
  78. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  79. ## result from these files should also be added to OTHER_OFILES above so they
  80. ## will be linked in.
  81.  
  82. # .msg files that should have msgwrap run on them
  83. MSGFILES = 
  84. # .defs files that should have mig run on them
  85. DEFSFILES = 
  86. # .mig files (no .defs files) that should have mig run on them
  87. MIGFILES = 
  88.  
  89. ## Add additional Help directories here (add them to the project as "Other 
  90. ## Resources" in Project Builder) so that they will be compressed into .store
  91. ## files and copied into the app wrapper.  If the help directories themselves
  92. ## need to also be in the app wrapper, then a cp command will need to be added
  93. ## in an after_install target.
  94. OTHER_HELP_DIRS = 
  95.  
  96. ## Added by Eric T. Seymour for building the link library and header folders.
  97. ## Also see OTHER_PRODUCT_DEPENDS and OTHER_GARBAGE above.
  98. LIBOFILES    = TablePrinter.o DBTableViewPrinter.o TablePrintPanel.o
  99. LIBHFILES    = TablePrinter.h DBTableViewPrinter.h TablePrintPanel.h
  100.  
  101.